home *** CD-ROM | disk | FTP | other *** search
/ Pascal Toolbox / Pascal Toolbox (ARI)(1995).iso / cdmenu / aview.ctl < prev    next >
Text File  |  1995-03-21  |  6KB  |  163 lines

  1. ; AVIEW V3.0 Sample control-file, DON'T USE TABS!
  2. ;
  3. ; ALTERNATELAYOUT
  4. ; With this command you can select the alternate screen-layout of the
  5. ; archive-lister as default (With full-path).
  6. ; ALTERNATELAYOUT
  7. ;
  8. ; BACKUP <Extension>
  9. ;
  10. ; DATEFORMAT <Dateformat>
  11. ; With this statement you can define how the file-date is shown, include
  12. ; MM for month, DD for day and YY for year, the sepparation-chars can be
  13. ; freely defined, default is MM/DD/YY
  14. DATEFORMAT DD.MM.YY
  15. ;
  16. ; NOCOLOR
  17. ;
  18. NOMOUSE
  19. ;
  20. ; NOSWAP
  21. ; With this command you force AVIEW not to swap itself out of memory when
  22. ; starting an external utility (not advisable).
  23. ; NOSWAP
  24. ;
  25. ; VIEWER <Trigger> <Viewer> [<Parameters>]  (max. 16 Viewer)
  26. VIEWER pcx \CDMENU\GVIEW %f
  27. VIEWER bmp \CDMENU\GVIEW %f
  28. VIEWER gif \CDMENU\GVIEW %f
  29. VIEWER tif \CDMENU\GVIEW %f
  30. VIEWER *   \CDMENU\XVIEW %f
  31. ;
  32. ; EDITOR <Trigger> <Editor> [<Parameters>]
  33. ; With this command you can define up to 32 editors, with <Trigger> you
  34. ; specify the file-extension which must trigger the editor, the <Trigger>
  35. ; may include wildcards. Default editor when non-defined is NCEDIT for all
  36. ; type of files.
  37. EDITOR *  \CDMENU\XVIEW %f
  38.  
  39. ; EXTRACTPATH <Path>
  40. ; With this command you define the path where files must be extracted to,
  41. ; when this command is NOT used, AVIEW will prompt you for a path.
  42. ; >>EXTRACTPATH d:\
  43. ;
  44. ; SCREENMODE <Lines>
  45. ; With this statement you can define how many lines per screen AVIEW must
  46. ; use, valid number of lines are 25, 35, 40, 43 and 50, note that a number
  47. ; greater than 25 needs a EGA of VGA display-adapter.
  48. SCREENMODE 25
  49. ;
  50. ; SORT <Key> [ascending|descending]
  51. ; valid sort-keys are: NAME, EXTENSION, ORGSIZE, CMPSIZE, DATETIME
  52. ; and METHOD, optional you can specify with ASCENDING or DESCENDING
  53. ; >>SORT extension ascending
  54. SORT extension ascending
  55. ;
  56. ; TEMPPATH <Path>
  57. ; With this command you define the path AVIEW must use as work-directory,
  58. ; this can be a ram-drive which will speed-up AVIEW dramatically.
  59. TEMPPATH c:\
  60. ;
  61. ; SCANNER <Scanner> [<Parameters>]
  62. ; With this command you define the virus-scanner to use after files are
  63. ; unpacked with the unpack function, when no scanner is defined, no virus-
  64. ; scan will be performed.
  65. ; >>SCANNER scan %f /a /nomem /noexpire /nopause
  66. ;
  67. ; ZOOMSPEED <Milliseconds)
  68. ; With this command you define the zoom-speed of the popup-windows to build
  69. ; up onto the screen, 0 means immediate popup, default is 10
  70. ZOOMSPEED 0
  71. ;
  72. ;
  73. ; -----------------------------------------------------------------------------
  74. ; The following commands concerns the configuration of the parameters passed
  75. ; by AVIEW to the archive-utils.
  76. ; For normal operation of AVIEW, you don't need to change this, all the
  77. ; following commands are optional, the sample commands reflects the standard
  78. ; default configuration of AVIEW.
  79. ; -----------------------------------------------------------------------------
  80. ;
  81. ; xxxADD <Command-line>
  82. ; xxxDELETE <Command-Line>
  83. ; xxxEXTRACT <Command-Line>
  84. ; xxxUNPACK <Command-Line>
  85. ; xxxUPDATE <Command-Line>
  86. ; xxxRESPONSE <Response-char>
  87. ; With these commands you can configure the interface between AVIEW and the
  88. ; external archive-utilitys, the xxx can be ARC, ARJ, LHA, PAK, ZIP or ZOO.
  89. ; xxxADD      - Defines which parameters to use for adding a file to
  90. ;               an archive, this is used for the ADD function (F7).
  91. ; xxxDELETE   - Defines which parameters to use for deleting a file or files
  92. ;               from an archive, this is used for the DELETE function
  93. ;               (F8 or DEL).
  94. ; xxxEXTRACT  - Defines which parameters to use for extracting a file or files
  95. ;               from an archive, this is used for the extract-function.
  96. ; xxxUNPACK   - Defines which parameters to use for extracting ONE file from
  97. ;               an archive WITHOUT path, this is used internally in AVIEW.
  98. ; xxxUPDATE   - Defines which parameters to use for updating a file in an
  99. ;               archive, this is used after you edited a file from an archive.
  100. ; xxxRESPONSE - Defines which charachter to use before a file name to tell
  101. ;               the archiver that it is a response file, AVIEW defines
  102. ;               automatically when to use this or not.
  103. ;
  104. ; NOTE: There are two variables, %A and %F, thes two must ALWAYS exist in one
  105. ;       of the above parameters (except xxxRESPONSE), %A will be replaced by
  106. ;       AVIEW with the name of the archive processed, and %F with a filename
  107. ;       for adding/deleting/updating, note that AVIEW will automatically add
  108. ;       the response-file-char before the filename when needed.
  109. ;       The variables %A and %F are NOT optional!
  110. ;
  111. ;
  112. ; PKPak/PKUnpak - for ARC files.
  113. ARCadd      PKPAK -a %a %f
  114. ARCdelete   PKPAK -d %a %f
  115. ARCextract  PKUNPAK -r %a %f
  116. ARCunpack   PKUNPAK %a %f
  117. ARCupdate   PKPAK -u %a %f
  118. ARCresponse @
  119. ;
  120. ; ARJ - for ARJ files.
  121. ARJadd      ARJ a -jm -m1 -e %a %f
  122. ARJdelete   ARJ d %a %f
  123. ARJextract  ARJ x -y %a %f
  124. ARJunpack   ARJ e %a %f
  125. ARJupdate   ARJ u -jm -m1 %a %f
  126. ARJresponse !
  127. ;
  128. ; LHA - For LZH or LHA files.
  129. LHAadd      LHARC a -m %a %f
  130. LHAdelete   LHARC d -m %a %f
  131. LHAextract  LHARC x -cm %a %f
  132. LHAunpack   LHARC e -m %a %f
  133. LHAupdate   LHARC u -m %a %f
  134. LHAresponse @
  135. ;
  136. ; PAK - For PAK files.
  137. PAKadd      PAK A %a %f
  138. PAKdelete   PAK D %a %f
  139. PAKextract  PAK E /WA /I %a %f
  140. PAKunpack   PAK E %a %f
  141. PAKupdate   PAK U %a %f
  142. PAKresponse @
  143. ;
  144. ; PKZip/PKUnzip - for ZIP files.
  145. ZIPadd      PKZIP -ex %a %f
  146. ZIPdelete   PKZIP d %a %f
  147. ZIPextract  PKUNZIP -d -o %a %f
  148. ZIPunpack   PKUNZIP %a %f
  149. ZIPupdate   PKZIP -u -ex %a %f
  150. ZIPresponse @
  151. ;
  152. ; ZOO - for ZOO files.
  153. ZOOadd      ZOO -a %a %f
  154. ZOOdelete   ZOO -d %a %f
  155. ZOOextract  ZOO -e -S %a %f
  156. ZOOunpack   ZOO -e %a %f
  157. ZOOupdate   ZOO -u %a %f
  158. ZOOresponse @
  159. ;
  160. ;
  161. ;
  162. ; <EOF>
  163.